"""
config.py - Shared constants used throughout the server.
Even though some of these constants aren't used yet,
having them all in one place makes future steps easier.
"""

HOST = 'localhost'
PORT = 8080

PUBLIC_DIR = 'www'                    # folder containing all static content
SESSION_COOKIE_NAME = 'sessionId'     # name of the cookie we'll use later

INFO_ROUTE = '/info'                  # diagnostic page
LOGIN_ROUTE = '/login'                # login page (future)
LOGOUT_ROUTE = '/logout'              # logout action (future)

QUESTION_ROUTE_PREFIX = '/question'   # all question routes (future)
ANSWER_ROUTE = '/answer'              # answer submission (future)
SCORE_ROUTE = '/score'                # score display (future)